home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / glibc-1.09 / glibc-1 / glibc-1.09.1 / posix / testfnm.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-18  |  219 b   |  13 lines

  1. #include <stdio.h>
  2. #include "fnmatch.h"
  3.  
  4. int
  5. main (c, v)
  6.      int c;
  7.      char **v;
  8. {
  9.   printf ("%d\n", fnmatch (v[1], v[2], FNM_PERIOD));
  10.   printf ("%d\n", fnmatch (v[1], v[2], FNM_CASEFOLD|FNM_PERIOD));
  11.   exit (0);
  12. }
  13.